*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100vw;
}
body{
    background: #EDFAFD;
}

.container{
    border: 1px solid whitesmoke;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.container2{
    width: 90vw;
    border:1px solid white;
    display: flex;
    flex-direction: row-reverse;
    box-shadow: 10px 10px 10px 10px #888888;
    background-color: white;
}

ul{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
}


.container2 h1{
    text-align: center;
    font-family: 'Hahmlet', serif;
    font-size: 27px;

}
.container2 p{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.container2 hr{
    width:100%;
}

h1{
    text-align: center;
    font-family: 'Hahmlet', serif;
}

.text{
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 200;
    float:left;
    width: 100%;
    padding:3%;
    background-color: white;
    width: 90%;
}
.images{
    width: 100%;
    
}
.images img{

    width: 100%;
    height: 90%;
}

.book-now {
    padding: 10px 60px;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background-color: black;
    text-decoration: none;
    font-size: 1.3em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* margin-left: -60px; */
    margin: 30px auto;
}
  
.btn {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 4px;
    z-index: 1;
    color: white;
}
  
.btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    direction: rtl;
    z-index: -1;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

.btn:hover {
    color: rgb(0, 0, 0);
}

.btn:hover:after {
    left: auto;
    right: 0;
    width: 100%;
}

.btn:active {
    top: 2px;
}


@media(max-width:750px){
    .container2{
        flex-direction:column;
        align-items: center;
        text-align: center;
    }

}
